home *** CD-ROM | disk | FTP | other *** search
- /*
- * Registry.H
- * © LFSoft 1995
- *
- * Some definition for registry.library.
- *
- * 29-08-1995 V1.0
- *
- */
-
- #ifndef REGISTRY_H
- #define REGISTRY_H
-
- #include <exec/ports.h>
- #include <exec/libraries.h>
-
- struct RLMessage { // Notification's message
- struct Message Msg;
- ULONG Class;
- UWORD Code;
- };
-
- // Notification's types
- enum { RL_TP_NOTIF=0, // Normal notification (RL_Notify)
- RL_TP_NWF, // Notification when this resource became locking's free.
- RL_TP_NINV // Utilisé uniquement par la librairie
- };
-
- #endif
-